.back-to-top {
    position: fixed;
    bottom: 20px;       /* Distance from bottom */
    right: 20px;        /* Distance from right */
    background-color:#F87B1B; /* Button background */
    color: #fff;        /* Text color */
    padding: 10px 15px; /* Button padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px;
    text-align: center;
    z-index: 1000;      /* Keeps it on top */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.back-to-top a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.back-to-top:hover {
    background-color: #555; /* Hover effect */
    cursor: pointer;
}
/*.floating-button {
  position: fixed;
  bottom: 40px; /* Adjust vertical position *
  right: 40px; /* Adjust horizontal position *
  background-color: #EEEEEE; /* Button background color *
  color: white; /* Text color *
  border: none;
  border-radius: 0%; /* Makes it circular *
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow *
  cursor: pointer;
  z-index: 1000; /* Ensures it stays on top of other content *
}

.floating-button:hover {
  background-color: #79716B; /* Darker background on hover *
}*/
